NavDrawerUiState

data class NavDrawerUiState(val isLoggedIn: Boolean = false)

Represents the UI state for the navigation drawer.

This data class holds the state regarding the user's login status, which is used for controlling the visibility and accessibility of various features in the navigation drawer, such as the login or logout options.

Constructors

Link copied to clipboard
constructor(isLoggedIn: Boolean = false)

Properties

Link copied to clipboard
val isLoggedIn: Boolean = false

A Boolean value indicating whether the user is logged in. Defaults to false